Using Snapshot Isolation Level (Microsoft SQL Server 2005 Only)

The Snapshot isolation level is available only with Microsoft SQL Server 2005. Enabling the SnapshotSerializable connection option changes the behavior of the Serializable isolation level to use the Snapshot Isolation level. This allows an application to use the Snapshot Isolation level with no or minimum code changes.

To configure Snapshot Isolation for connections, you must have your Microsoft SQL Server 2005 database configured for Snapshot Isolation and your application must have the transaction isolation level set to Serializable.

See the following sections for the connection information specific to the SequeLink Client.

Using The Snapshot Isolation Level with the ODBC Driver

If you are writing a new application, you may want to code it to set the connection attribute SQL_COPT_SS_TXN_ISOLATION to the value SQL_TXN_SS_SNAPSHOT. The application then uses the snapshot isolation level without requiring the Use Snapshot Transactions connection option.